home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / Net_StringToUltraAddr.c < prev    next >
C/C++ Source or Header  |  1992-03-02  |  2KB  |  60 lines

  1. /* 
  2.  * Net_StringToUltraAddr.c --
  3.  *
  4.  *    Convert a string to an UltraNet address.
  5.  *
  6.  * Copyright 1987 Regents of the University of California
  7.  * All rights reserved.
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  */
  16.  
  17. #ifndef lint
  18. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_StringToUltraAddr.c,v 1.2 88/11/21 09:28:33 mendel Exp $ SPRITE (Berkeley)";
  19. #endif not lint
  20.  
  21.  
  22. #include "sprite.h"
  23. #include "net.h"
  24.  
  25. /*
  26.  *----------------------------------------------------------------------
  27.  *
  28.  * Net_StringToUltraAddr --
  29.  *
  30.  *    This routine takes a string form of an UltraNet address and
  31.  *    converts it to the Net_UltraAddress form. The string must be
  32.  *    null-terminated.
  33.  *
  34.  * Results:
  35.  *    The Ultranet address in the Net_UltraAddress form.
  36.  *
  37.  * Side effects:
  38.  *    None.
  39.  *
  40.  *----------------------------------------------------------------------
  41.  */
  42.  
  43. void
  44. Net_StringToUltraAddr(buffer, ultraAddressPtr)
  45.     register char *buffer;
  46.     Net_UltraAddress *ultraAddressPtr;
  47. {
  48.     int        group;
  49.     int        unit;
  50.     int        n;
  51.  
  52.     *buffer = '\0';
  53.     n = sscanf(buffer, "%d/%d", &group, &unit);
  54.     if (n != 2) {
  55.     return;
  56.     }
  57.     Net_UltraAddressSet(ultraAddressPtr, group, unit);
  58. }
  59.  
  60.